home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / email-validation.izs < prev    next >
Text File  |  2005-09-28  |  14KB  |  462 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Email Address Validation
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>This is a very useful script to have to prevent people typing in rubbish instead of their email address.<!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13. <!-- HOW TO INSTALL EMAIL ADDRESS VALIDATION:
  14.  
  15.   1.  Copy code into the HEAD section of document
  16.   2.  Put last coding into the BODY section of document  -->
  17.  
  18. <!-- STEP ONE: Add code into HEAD section of document  -->
  19.  
  20. <HEAD>
  21.  
  22. <SCRIPT LANGUAGE="JavaScript">
  23.  
  24.  
  25.  
  26. <!-- V1.1.3: Sandeep V. Tamhankar (stamhankar@hotmail.com) -->
  27. <!-- Original:  Sandeep V. Tamhankar (stamhankar@hotmail.com) -->
  28. <!-- Changes:
  29. /* 1.1.4: Fixed a bug where upper ASCII characters (i.e. accented letters
  30. international characters) were allowed.
  31.  
  32. 1.1.3: Added the restriction to only accept addresses ending in two
  33. letters (interpreted to be a country code) or one of the known
  34. TLDs (com, net, org, edu, int, mil, gov, arpa), including the
  35. new ones (biz, aero, name, coop, info, pro, museum).  One can
  36. easily update the list (if ICANN adds even more TLDs in the
  37. future) by updating the knownDomsPat variable near the
  38. top of the function.  Also, I added a variable at the top
  39. of the function that determines whether or not TLDs should be
  40. checked at all.  This is good if you are using this function
  41. internally (i.e. intranet site) where hostnames don't have to 
  42. conform to W3C standards and thus internal organization e-mail
  43. addresses don't have to either.
  44. Changed some of the logic so that the function will work properly
  45. with Netscape 6.
  46.  
  47. 1.1.2: Fixed a bug where trailing . in e-mail address was passing
  48. (the bug is actually in the weak regexp engine of the browser; I
  49. simplified the regexps to make it work).
  50.  
  51. 1.1.1: Removed restriction that countries must be preceded by a domain,
  52. so abc@host.uk is now legal.  However, there's still the 
  53. restriction that an address must end in a two or three letter
  54. word.
  55.  
  56. 1.1: Rewrote most of the function to conform more closely to RFC 822.
  57.  
  58. 1.0: Original  */
  59. // -->
  60.  
  61. <!-- Begin
  62. function emailCheck (emailStr) {
  63.  
  64. /* The following variable tells the rest of the function whether or not
  65. to verify that the address ends in a two-letter country or well-known
  66. TLD.  1 means check it, 0 means don't. */
  67.  
  68. var checkTLD=1;
  69.  
  70. /* The following is the list of known TLDs that an e-mail address must end with. */
  71.  
  72. var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
  73.  
  74. /* The following pattern is used to check if the entered e-mail address
  75. fits the user@domain format.  It also is used to separate the username
  76. from the domain. */
  77.  
  78. var emailPat=/^(.+)@(.+)$/;
  79.  
  80. /* The following string represents the pattern for matching all special
  81. characters.  We don't want to allow special characters in the address. 
  82. These characters include ( ) < > @ , ; : \ " . [ ] */
  83.  
  84. var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
  85.  
  86. /* The following string represents the range of characters allowed in a 
  87. username or domainname.  It really states which chars aren't allowed.*/
  88.  
  89. var validChars="\[^\\s" + specialChars + "\]";
  90.  
  91. /* The following pattern applies if the "user" is a quoted string (in
  92. which case, there are no rules about which characters are allowed
  93. and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
  94. is a legal e-mail address. */
  95.  
  96. var quotedUser="(\"[^\"]*\")";
  97.  
  98. /* The following pattern applies for domains that are IP addresses,
  99. rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
  100. e-mail address. NOTE: The square brackets are required. */
  101.  
  102. var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
  103.  
  104. /* The following string represents an atom (basically a series of non-special characters.) */
  105.  
  106. var atom=validChars + '+';
  107.  
  108. /* The following string represents one word in the typical username.
  109. For example, in john.doe@somewhere.com, john and doe are words.
  110. Basically, a word is either an atom or quoted string. */
  111.  
  112. var word="(" + atom + "|" + quotedUser + ")";
  113.  
  114. // The following pattern describes the structure of the user
  115.  
  116. var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
  117.  
  118. /* The following pattern describes the structure of a normal symbolic
  119. domain, as opposed to ipDomainPat, shown above. */
  120.  
  121. var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
  122.  
  123. /* Finally, let's start trying to figure out if the supplied address is valid. */
  124.  
  125. /* Begin with the coarse pattern to simply break up user@domain into
  126. different pieces that are easy to analyze. */
  127.  
  128. var matchArray=emailStr.match(emailPat);
  129.  
  130. if (matchArray==null) {
  131.  
  132. /* Too many/few @'s or something; basically, this address doesn't
  133. even fit the general mould of a valid e-mail address. */
  134.  
  135. alert("Email address seems incorrect (check @ and .'s)");
  136. return false;
  137. }
  138. var user=matchArray[1];
  139. var domain=matchArray[2];
  140.  
  141. // Start by checking that only basic ASCII characters are in the strings (0-127).
  142.  
  143. for (i=0; i<user.length; i++) {
  144. if (user.charCodeAt(i)>127) {
  145. alert("Ths username contains invalid characters.");
  146. return false;
  147.    }
  148. }
  149. for (i=0; i<domain.length; i++) {
  150. if (domain.charCodeAt(i)>127) {
  151. alert("Ths domain name contains invalid characters.");
  152. return false;
  153.    }
  154. }
  155.  
  156. // See if "user" is valid 
  157.  
  158. if (user.match(userPat)==null) {
  159.  
  160. // user is not valid
  161.  
  162. alert("The username doesn't seem to be valid.");
  163. return false;
  164. }
  165.  
  166. /* if the e-mail address is at an IP address (as opposed to a symbolic
  167. host name) make sure the IP address is valid. */
  168.  
  169. var IPArray=domain.match(ipDomainPat);
  170. if (IPArray!=null) {
  171.  
  172. // this is an IP address
  173.  
  174. for (var i=1;i<=4;i++) {
  175. if (IPArray[i]>255) {
  176. alert("Destination IP address is invalid!");
  177. return false;
  178.    }
  179. }
  180. return true;
  181. }
  182.  
  183. // Domain is symbolic name.  Check if it's valid.
  184.  
  185. var atomPat=new RegExp("^" + atom + "$");
  186. var domArr=domain.split(".");
  187. var len=domArr.length;
  188. for (i=0;i<len;i++) {
  189. if (domArr[i].search(atomPat)==-1) {
  190. alert("The domain name does not seem to be valid.");
  191. return false;
  192.    }
  193. }
  194.  
  195. /* domain name seems valid, but now make sure that it ends in a
  196. known top-level domain (like com, edu, gov) or a two-letter word,
  197. representing country (uk, nl), and that there's a hostname preceding 
  198. the domain or country. */
  199.  
  200. if (checkTLD && domArr[domArr.length-1].length!=2 && 
  201. domArr[domArr.length-1].search(knownDomsPat)==-1) {
  202. alert("The address must end in a well-known domain or two letter " + "country.");
  203. return false;
  204. }
  205.  
  206. // Make sure there's a host name preceding the domain.
  207.  
  208. if (len<2) {
  209. alert("This address is missing a hostname!");
  210. return false;
  211. }
  212.  
  213. // If we've gotten this far, everything's valid!
  214. return true;
  215. }
  216.  
  217. //  End -->
  218. </script>
  219.  
  220. </HEAD>
  221.  
  222. <!-- STEP TWO: Add code into BODY section of document  -->
  223.  
  224. <BODY>
  225.  
  226. <form name=emailform onSubmit="return emailCheck(this.email.value)">
  227. Your Email Address:  <input type=text name="email"><br>
  228. <input type=submit value="Submit">
  229. </form>
  230.  
  231.  
  232.  
  233. <!-- END OF SCRIPT -->
  234. <!/SCRIPT>
  235.  
  236. <!PREVIEW>
  237. <!-- START OF SCRIPT -->
  238.  
  239. <!-- HOW TO INSTALL EMAIL ADDRESS VALIDATION:
  240.  
  241.   1.  Copy code into the HEAD section of document
  242.   2.  Put last coding into the BODY section of document  -->
  243.  
  244. <!-- STEP ONE: Add code into HEAD section of document  -->
  245.  
  246. <HEAD>
  247.  
  248. <SCRIPT LANGUAGE="JavaScript">
  249.  
  250.  
  251.  
  252. <!-- V1.1.3: Sandeep V. Tamhankar (stamhankar@hotmail.com) -->
  253. <!-- Original:  Sandeep V. Tamhankar (stamhankar@hotmail.com) -->
  254. <!-- Changes:
  255. /* 1.1.4: Fixed a bug where upper ASCII characters (i.e. accented letters
  256. international characters) were allowed.
  257.  
  258. 1.1.3: Added the restriction to only accept addresses ending in two
  259. letters (interpreted to be a country code) or one of the known
  260. TLDs (com, net, org, edu, int, mil, gov, arpa), including the
  261. new ones (biz, aero, name, coop, info, pro, museum).  One can
  262. easily update the list (if ICANN adds even more TLDs in the
  263. future) by updating the knownDomsPat variable near the
  264. top of the function.  Also, I added a variable at the top
  265. of the function that determines whether or not TLDs should be
  266. checked at all.  This is good if you are using this function
  267. internally (i.e. intranet site) where hostnames don't have to 
  268. conform to W3C standards and thus internal organization e-mail
  269. addresses don't have to either.
  270. Changed some of the logic so that the function will work properly
  271. with Netscape 6.
  272.  
  273. 1.1.2: Fixed a bug where trailing . in e-mail address was passing
  274. (the bug is actually in the weak regexp engine of the browser; I
  275. simplified the regexps to make it work).
  276.  
  277. 1.1.1: Removed restriction that countries must be preceded by a domain,
  278. so abc@host.uk is now legal.  However, there's still the 
  279. restriction that an address must end in a two or three letter
  280. word.
  281.  
  282. 1.1: Rewrote most of the function to conform more closely to RFC 822.
  283.  
  284. 1.0: Original  */
  285. // -->
  286.  
  287. <!-- Begin
  288. function emailCheck (emailStr) {
  289.  
  290. /* The following variable tells the rest of the function whether or not
  291. to verify that the address ends in a two-letter country or well-known
  292. TLD.  1 means check it, 0 means don't. */
  293.  
  294. var checkTLD=1;
  295.  
  296. /* The following is the list of known TLDs that an e-mail address must end with. */
  297.  
  298. var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
  299.  
  300. /* The following pattern is used to check if the entered e-mail address
  301. fits the user@domain format.  It also is used to separate the username
  302. from the domain. */
  303.  
  304. var emailPat=/^(.+)@(.+)$/;
  305.  
  306. /* The following string represents the pattern for matching all special
  307. characters.  We don't want to allow special characters in the address. 
  308. These characters include ( ) < > @ , ; : \ " . [ ] */
  309.  
  310. var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
  311.  
  312. /* The following string represents the range of characters allowed in a 
  313. username or domainname.  It really states which chars aren't allowed.*/
  314.  
  315. var validChars="\[^\\s" + specialChars + "\]";
  316.  
  317. /* The following pattern applies if the "user" is a quoted string (in
  318. which case, there are no rules about which characters are allowed
  319. and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
  320. is a legal e-mail address. */
  321.  
  322. var quotedUser="(\"[^\"]*\")";
  323.  
  324. /* The following pattern applies for domains that are IP addresses,
  325. rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
  326. e-mail address. NOTE: The square brackets are required. */
  327.  
  328. var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
  329.  
  330. /* The following string represents an atom (basically a series of non-special characters.) */
  331.  
  332. var atom=validChars + '+';
  333.  
  334. /* The following string represents one word in the typical username.
  335. For example, in john.doe@somewhere.com, john and doe are words.
  336. Basically, a word is either an atom or quoted string. */
  337.  
  338. var word="(" + atom + "|" + quotedUser + ")";
  339.  
  340. // The following pattern describes the structure of the user
  341.  
  342. var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
  343.  
  344. /* The following pattern describes the structure of a normal symbolic
  345. domain, as opposed to ipDomainPat, shown above. */
  346.  
  347. var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
  348.  
  349. /* Finally, let's start trying to figure out if the supplied address is valid. */
  350.  
  351. /* Begin with the coarse pattern to simply break up user@domain into
  352. different pieces that are easy to analyze. */
  353.  
  354. var matchArray=emailStr.match(emailPat);
  355.  
  356. if (matchArray==null) {
  357.  
  358. /* Too many/few @'s or something; basically, this address doesn't
  359. even fit the general mould of a valid e-mail address. */
  360.  
  361. alert("Email address seems incorrect (check @ and .'s)");
  362. return false;
  363. }
  364. var user=matchArray[1];
  365. var domain=matchArray[2];
  366.  
  367. // Start by checking that only basic ASCII characters are in the strings (0-127).
  368.  
  369. for (i=0; i<user.length; i++) {
  370. if (user.charCodeAt(i)>127) {
  371. alert("Ths username contains invalid characters.");
  372. return false;
  373.    }
  374. }
  375. for (i=0; i<domain.length; i++) {
  376. if (domain.charCodeAt(i)>127) {
  377. alert("Ths domain name contains invalid characters.");
  378. return false;
  379.    }
  380. }
  381.  
  382. // See if "user" is valid 
  383.  
  384. if (user.match(userPat)==null) {
  385.  
  386. // user is not valid
  387.  
  388. alert("The username doesn't seem to be valid.");
  389. return false;
  390. }
  391.  
  392. /* if the e-mail address is at an IP address (as opposed to a symbolic
  393. host name) make sure the IP address is valid. */
  394.  
  395. var IPArray=domain.match(ipDomainPat);
  396. if (IPArray!=null) {
  397.  
  398. // this is an IP address
  399.  
  400. for (var i=1;i<=4;i++) {
  401. if (IPArray[i]>255) {
  402. alert("Destination IP address is invalid!");
  403. return false;
  404.    }
  405. }
  406. return true;
  407. }
  408.  
  409. // Domain is symbolic name.  Check if it's valid.
  410.  
  411. var atomPat=new RegExp("^" + atom + "$");
  412. var domArr=domain.split(".");
  413. var len=domArr.length;
  414. for (i=0;i<len;i++) {
  415. if (domArr[i].search(atomPat)==-1) {
  416. alert("The domain name does not seem to be valid.");
  417. return false;
  418.    }
  419. }
  420.  
  421. /* domain name seems valid, but now make sure that it ends in a
  422. known top-level domain (like com, edu, gov) or a two-letter word,
  423. representing country (uk, nl), and that there's a hostname preceding 
  424. the domain or country. */
  425.  
  426. if (checkTLD && domArr[domArr.length-1].length!=2 && 
  427. domArr[domArr.length-1].search(knownDomsPat)==-1) {
  428. alert("The address must end in a well-known domain or two letter " + "country.");
  429. return false;
  430. }
  431.  
  432. // Make sure there's a host name preceding the domain.
  433.  
  434. if (len<2) {
  435. alert("This address is missing a hostname!");
  436. return false;
  437. }
  438.  
  439. // If we've gotten this far, everything's valid!
  440. return true;
  441. }
  442.  
  443. //  End -->
  444. </script>
  445.  
  446. </HEAD>
  447.  
  448. <!-- STEP TWO: Add code into BODY section of document  -->
  449.  
  450. <BODY>
  451.  
  452. <form name=emailform onSubmit="return emailCheck(this.email.value)">
  453. Your Email Address:  <input type=text name="email"><br>
  454. <input type=submit value="Submit">
  455. </form>
  456.  
  457.  
  458. <!-- END OF SCRIPT -->
  459. <!/PREVIEW>
  460.  
  461. <!RELATED>NONE<!/RELATED>
  462.